Implement new VMX feature flag.
authorEwan Mellor <ewan@xensource.com>
Thu, 26 Oct 2006 14:53:31 +0000 (15:53 +0100)
committerEwan Mellor <ewan@xensource.com>
Thu, 26 Oct 2006 14:53:31 +0000 (15:53 +0100)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/libxen/include/xen_cpu_feature.h
tools/libxen/src/xen_cpu_feature.c

index 675d7dc952e6474cee4d5599a9511b754129cea7..6e0614a8ac5edc843ed23a793dfdf881d142a75e 100644 (file)
@@ -338,7 +338,12 @@ enum xen_cpu_feature
     /**
      *  If yes HyperThreading not valid
      */
-    XEN_CPU_FEATURE_CMP_LEGACY
+    XEN_CPU_FEATURE_CMP_LEGACY,
+
+    /**
+     *  VMX instruction set
+     */
+    XEN_CPU_FEATURE_VMX
 };
 
 
index c955c14982628b02c9e622e27ea2b4481afa0d0b..98fb64f9e3775bf3aa1209f58f3af4c6086e045e 100644 (file)
@@ -90,7 +90,8 @@ static const char *lookup_table[] =
     "XCRYPT",
     "XCRYPT_EN",
     "LAHF_LM",
-    "CMP_LEGACY"
+    "CMP_LEGACY",
+    "VMX"
 };